To change a salary from 50,000.00 to 005000000 (no decimals). Preceding zeroes must be added if the salary (with 2 digits after the decimal) is not 9 bytes).
// Converts 50,000.00 to 005000000
if (Event.Value != null && Event.Value != "") {
var x = decimal.Parse(double(Event.Value)) * 100;
Event.Value = x.ToString("000000000");
}